home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 76 / MF_UK_76_1.iso / Education Feature / MicroWorlds 2.03 Try Me / MicroWorlds 2.03 Try Me.rsrc / TEXT_4009_@ can only be used in a procedure.txt < prev    next >
Encoding:
Text File  |  1998-05-08  |  497 b   |  17 lines

  1. Stop, output, local, or let was used in the Command Center. These commands are used to stop procedures, or make variables local to a procedure. They can only be used inside procedures. This message may occur if you copy a procedure, paste it into the Command Center, and then try out each line.
  2.  
  3. Examples:
  4.  
  5. to try
  6. fd 5
  7. if colorunder = 15 [stop]
  8. try
  9. end
  10.  
  11. to firstnumber :word 
  12. if empty? :word [output "none] 
  13. if number? first :word 
  14.           [output first :word] 
  15. output firstnumber bf :word 
  16. end
  17.